All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.OutlineViewNotifications

public interface OutlineViewNotifications
This interface wraps the Objective-C category defining delegate methods of the NSOutlineView class. The methods in this interface are notifications methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o outlineViewColumnDidMove(Notification)
A wrapper for the - outlineViewColumnDidMove: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewColumnDidResize(Notification)
A wrapper for the - outlineViewColumnDidResize: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewItemDidCollapse(Notification)
A wrapper for the - outlineViewItemDidCollapse: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewItemDidExpand(Notification)
A wrapper for the - outlineViewItemDidExpand: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewSelectionDidChange(Notification)
A wrapper for the - outlineViewSelectionDidChange: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewSelectionIsChanging(Notification)
A wrapper for the - outlineViewSelectionIsChanging: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).

Methods

 o outlineViewSelectionDidChange
 public abstract void outlineViewSelectionDidChange(Notification notification)
A wrapper for the - outlineViewSelectionDidChange: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewColumnDidMove
 public abstract void outlineViewColumnDidMove(Notification notification)
A wrapper for the - outlineViewColumnDidMove: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewColumnDidResize
 public abstract void outlineViewColumnDidResize(Notification notification)
A wrapper for the - outlineViewColumnDidResize: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewSelectionIsChanging
 public abstract void outlineViewSelectionIsChanging(Notification notification)
A wrapper for the - outlineViewSelectionIsChanging: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewItemDidExpand
 public abstract void outlineViewItemDidExpand(Notification notification)
A wrapper for the - outlineViewItemDidExpand: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewItemDidCollapse
 public abstract void outlineViewItemDidCollapse(Notification notification)
A wrapper for the - outlineViewItemDidCollapse: Objective-C instance method associated to notifications sent by the OutlineView class (known as the NSOutlineView Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index